From 05aa666549a67973cc1d58c14806923c1c46576d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 10 Apr 2004 03:06:55 +0000 Subject: [PATCH] Declare as XHTML 1 transitional by default --- includes/DefaultSettings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index ae5de09c4c..b0b9e7e872 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -96,8 +96,8 @@ $wgInputEncoding = "ISO-8859-1"; $wgOutputEncoding = "ISO-8859-1"; $wgEditEncoding = ""; $wgMimeType = "text/html"; -$wgDocType = "-//W3C//DTD HTML 4.01 Transitional//EN"; -$wgDTD = "http://www.w3.org/TR/html4/loose.dtd"; +$wgDocType = "-//W3C//DTD XHTML 1.0 Transitional//EN"; +$wgDTD = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"; $wgUseDynamicDates = false; # Enable to allow rewriting dates in page text # DOES NOT FORMAT CORRECTLY FOR MOST LANGUAGES $wgAmericanDates = false; # Enable for English module to print dates -- 2.20.1